Interface symantec.itools.db.beans.binding.BasicDataSource
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface symantec.itools.db.beans.binding.BasicDataSource

public interface BasicDataSource

Method Index

 o addTriggerUIListener(TriggerUIListener)
Adds a listner for the trigger mothod of the data source.
 o getCurrentRowNumber()
 o getTotalNumberOfRows()
 o getValue(int, int)
Gets the object stored in the QueryNavigator with the coordinates row and col.
 o removeTriggerUIListener(TriggerUIListener)
Removes a listner for the trigger mothod of the data source.
 o setValue(Object, int, int)
Sets the object stored in the QueryNavigator with the coordinates row and col.

Methods

 o addTriggerUIListener
public abstract void addTriggerUIListener(TriggerUIListener mds)
Adds a listner for the trigger mothod of the data source. every data source sould be connected to only one mediatords therefore the vector of listeners should contain only one element. this vector of listeners is also used for setting the name of the mediatords's DataName.

 o getCurrentRowNumber
public abstract int getCurrentRowNumber()
 o getTotalNumberOfRows
public abstract int getTotalNumberOfRows()
 o getValue
public abstract java.lang.Object getValue(int Row,
                                          int Col)
Gets the object stored in the QueryNavigator with the coordinates row and col.

Parameters:
Row - The current row, relative value.
Col - The column value.
Returns:
The value of the object.
 o removeTriggerUIListener
public abstract void removeTriggerUIListener(TriggerUIListener mds)
Removes a listner for the trigger mothod of the data source. every data source sould be connected to only one mediatords therefore the vector of listeners should contain only one element. this vector of listeners is also used for setting the name of the mediatords's DataName.

 o setValue
public abstract void setValue(Object Value,
                              int Row,
                              int Col)
Sets the object stored in the QueryNavigator with the coordinates row and col.

Parameters:
Value - The value of the object.
Row - The current row, relative value.
Col - The column value.

All Packages  Class Hierarchy  This Package  Previous  Next  Index